home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / cug191 / usrlib.b < prev    next >
Text File  |  1986-07-10  |  90b  |  7 lines

  1. float sq(x) float x ;
  2. {return(x*x) ; }
  3.  
  4. float cu(x) float x ;
  5. {return(x*sq(x)) ; }
  6.  
  7.